-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 2.28 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "appassembly",
"repository": {},
"license": "Apache-2.0",
"main": "src/index.js",
"version": "0.0.1",
"scripts": {
"deploy": "webpack --mode production",
"debugbuild": "webpack --mode production --display-error-details",
"watch": "(webpack --mode development --watch) & (gulp watch)",
"buildcss": "npx tailwind build css/base.scss -o dist/static/tmpcss/base.css && npx tailwind build css/app.css -o dist/static/tmpcss/app.css",
"purgecss": "mkdir -p dist/static/tmpcss && mv dist/static/css/*.css dist/static/tmpcss && purgecss --css dist/static/tmpcss/*.css --content ../templates/*.html -o dist/static/css && rm dist/static/tmpcss",
"stats": "webpack --profile --json > stats.json",
"test": "jest --config config/jest.config.js",
"test-silent": "jest --config config/jest.config.js --reporters jest-silent-reporter",
"watchtest": "jest --watchAll"
},
"dependencies": {
"@appassembly/compiler": "file:src/compiler",
"@appassembly/runtime": "file:src/runtime/js",
"@appassembly/shared": "file:src/shared/js",
"core-js": "^3.6.5",
"hamt": "^2.2.2",
"npm": "^6.14.3",
"prismjs": "^1.19.0",
"short-uuid": "^3.1.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"@fullhuman/postcss-purgecss": "^1.3.0",
"autoprefixer": "^9.7.4",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.0",
"babel-preset-react-app": "^3.1.2",
"browser-sync": "^2.26.7",
"clean-css": "^4.2.3",
"copy-webpack-plugin": "^4.5.0",
"css-loader": "^2.1.1",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-csso": "^4.0.1",
"gulp-postcss": "^8.0.0",
"gulp-purgecss": "^1.2.0",
"gulp-sass": "^4.0.2",
"jest": "^26.3.0",
"jest-silent-reporter": "^0.2.1",
"mini-css-extract-plugin": "^0.4.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"purgecss": "^1.4.2",
"style-loader": "^0.23.1",
"tailwindcss": "^1.2.0",
"treeify": "^1.1.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.42.0",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "^3.3.11"
}
}