-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (34 loc) · 1.04 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
{
"name": "create-react-app-hack",
"version": "0.1.0",
"private": true,
"dependencies": {
"preact": "^8.2.7",
"preact-compat": "^3.18.0",
"react-scripts": "1.1.4"
},
"scripts": {
"prestart": "npm run build-css",
"start": "run-p -ncr watch-css start-script",
"start-script": "node scripts/start",
"prebuild": "npm run build-css",
"build": "node scripts/build",
"pretest": "npm run build-css",
"test": "node scripts/test --env=jsdom",
"eject": "react-scripts eject",
"build-css": "node-less-chokidar src",
"watch-css": "node-less-chokidar src --watch",
"preanalyze": "npm run build",
"analyze": "source-map-explorer --html build/static/js/main.* > packages.html"
},
"devDependencies": {
"module-alias": "^2.0.6",
"node-less-chokidar": "^0.1.2",
"npm-run-all": "^4.1.2",
"preact-compat-enzyme": "^0.2.5",
"preact-render-to-json": "^3.6.6",
"preact-test-utils": "^0.1.3",
"source-map-explorer": "^1.5.0",
"webpack-subresource-integrity": "^1.1.0-rc.4"
}
}